*, html, body {
	padding: 0;
	margin: 0;
}

body {
	/*background: #000;*/
	color: #fff;
	padding: 0;
	margin: 0;
	font-weight: bold;
	overflow: hidden;
}

a {
	color: #ffffff;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	color: #ffffff;
	padding: 5px;
	font-family: Monospace;
	font-size: 13px;
	text-align: center;
	z-index: 1000;
}
.zoom_divs{
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
}

#slider_hold{
	display: inline-block;
}

#oldie {
	background: rgb(200, 100, 0) !important;
	color: #fff;
}

#vt {
	display: none
}

#vt, #vt a {
	color: orange;
}

#scaleInp, #bumpInp, #displaceInp, #shineInp, #bumpLabel, #shineLabel, #displaceLabel {
	width: 50px;
	display: none;
}

#autoscale {
	vertical-align: middle;
}

#canvasDiv {
	font-size: 0;
	 position: absolute;
	top: 0px;
	left: 0px;
}

#zoomSlider {
	width: 200px;
	vertical-align: middle;
	display: inline-block;
	font-size: 13px;
}


#backdiv { 
  background: url('img/back.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}



#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader-wrapper-wrapper {
	width: 100%;
	height: 100%;
	transform: scale(0.6);
}


#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 16px solid transparent;
    border-top-color: #565657;

    -webkit-animation: spin 2s linear infinite; 
    animation: spin 2s linear infinite; 
}

#loader2 {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 16px solid transparent;
    border-top-color: #e31937;
    width: 116px;
    height: 116px;
    -webkit-animation: spin 2.5s linear infinite;
    animation: spin 2.3s linear infinite;
}

#loader3 {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 16px solid transparent;
    border-top-color: #565657;
    width: 82px;
    height: 82px;
    -webkit-animation: spin 2.5s linear infinite;
    animation: spin 2.4s linear infinite;
}

#loader4 {
	position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 16px solid transparent;
    border-top-color: #e31937;
    width: 49px;
    height: 49px;
    -webkit-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}


.loader_col {
    border-top-color: #212121 !important;
    -webkit-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}



@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  
        -ms-transform: rotate(0deg);  
        transform: rotate(0deg);  
    }
    100% {
        -webkit-transform: rotate(360deg);  
        -ms-transform: rotate(360deg);  
        transform: rotate(360deg);  
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  
        -ms-transform: rotate(0deg);  
        transform: rotate(0deg);  
    }
    100% {
        -webkit-transform: rotate(360deg);  
        -ms-transform: rotate(360deg);  
        transform: rotate(360deg);  
    }
}